home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr18
/
uc31c_1.zip
/
GDI.SC_
/
GDI.SC
Wrap
Text File
|
1993-04-22
|
354b
|
21 lines
; Gdi.scr - draw unicom boxes on screen
i = 0
j = 0
GdiCreatePen(0, 1,255,0,0)
GdiCreateBrush(0,0,0)
while (j< 350)
i=0
while (i<640)
l = 0
while (l < 20)
GdiRectangle(i-l,j+l,i+40+l,j+60-l)
l = l+5
endwhile
gditextout(i - l/2,j+l,"UNICOM")
i=i+80
endwhile
j=j+60
endwhile
exit